Little changes on Colombian Programming Contest solutions.
[and.git] / 458 - The Decoder / 458.cpp
blob968b37e4adbda4dffefcef4e637b15fcad01a2c8
1 #include <stdio.h>
2 #include <iostream>
4 using namespace std;
6 int main(int argc, char *argv[])
7 {
8 char c;
9 while ((c = getchar()) != EOF){
10 if (c != '\n'){
11 printf("%c", (c - 7));
13 else{
14 printf("\n");
17 return 0;